home *** CD-ROM | disk | FTP | other *** search
/ Power CD / Power CD ATARI-Rechner Lieben.iso / ACC_CPX / MABOOG / MABOOG15.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-06-16  |  2.9 KB  |  184 lines

  1. /*
  2.         Martin's Bootsektor-Generator
  3.         (c)1989 by Martin Möller
  4.                    Klopstockweg 23
  5.                    4440 Rheine
  6.         Version:
  7.         1.5c
  8. */
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include <osbind.h>
  13. #include <portab.h>
  14. #include <gemlib.h>
  15. #include <maboog.h>
  16. #define anzahl 5
  17.  
  18. int work_in[11],work_out[57];
  19. int ap_id;
  20. int handle;
  21. int dummy;
  22. char    *fn[]=
  23. {
  24.  "BOOTPCPW.B",
  25.  "BOOTPIC.B",
  26.  "BOOTPSW.B",
  27.  "BOOTPICC.B",
  28.  "BOOTPCMC.B"
  29. };
  30. int len[]=
  31.  150,
  32.  118,
  33.  100,
  34.  212,
  35.  252
  36. };
  37. unsigned char bt[6][513];
  38. int     rt;
  39. int     i;      
  40. unsigned char prg[514];
  41. unsigned char boot[514];
  42. int a,b,c;
  43. long adr1, adr2;
  44. int button;
  45. char pssw[10];
  46.  
  47. char bck[6];
  48. char *ptr;
  49.  
  50. void cls()
  51. {
  52.         printf("\033E");
  53. }
  54.  
  55. void init()
  56. {
  57.  for( i=0; i<10 ; i++ )
  58.   work_in[i]=1;
  59.  work_in[10]=2;
  60.  v_opnvwk( work_in, &handle , work_out );
  61.  ap_id=appl_init();
  62.  graf_mouse( 0, 0L );
  63.  cls();
  64.  rsrc_load("MABOOG.RSC");
  65.  rsrc_gaddr( 0,SELECT,&adr1);
  66.  rsrc_gaddr( 0,PASSWORT,&adr2);
  67.  for ( i=0 ; i<anzahl ; i++ )
  68.  {
  69.   if((rt=Fopen(fn[i],2))<0)
  70.   {
  71.    cls();
  72.    printf(" Fehler beim öffnen des Bootprogrammes: %d\n",rt);
  73.    printf(" Bitte starten Sie das System neu!\n");
  74.    printf(" (c)1989 by Martin Möller / Rheine\n");
  75.    for(;;)
  76.     ;
  77.   }
  78.   Fread( rt , len[i] , bt[i] );
  79.   Fclose( rt );
  80.  }
  81. }
  82.  
  83. void normal( tree, ind )
  84. OBJECT tree[];
  85. int ind;
  86. {
  87.  tree[ind].ob_state &= -2;
  88. }
  89.  
  90. int slct()
  91. {
  92.  int x,y,w,h;
  93.  form_center (adr1, &x,&y,&w,&h);
  94.  form_dial(0,x,y,w,h,x,y,w,h);
  95.  objc_draw(adr1,0,6,0,0,639,399);
  96.  button=form_do(adr1,0);
  97.  normal(adr1,button);
  98.  form_dial(3,x,y,w,h,x,y,w,h);
  99.  if(button==ABBRUCH)
  100.  {
  101.   gmxt();
  102.  }
  103.  return((button-PCPW));
  104. }
  105.  
  106. void cpy1( a )
  107. int a;
  108. {
  109.  for ( i=0 ; i<len[a] ; i++ )
  110.   prg[i]=bt[a][i];
  111. }
  112.  
  113. void cpy2( a )
  114. int a;
  115. {
  116.  for ( i=0 ; i<len[a] ; i++ )
  117.   boot[i+58]=prg[i];
  118. }
  119.  
  120. void inpass( pw )
  121. OBJECT pw[];
  122. {
  123.  int x,y,w,h;
  124.  TEDINFO *ti;
  125.  form_center( adr2,&x,&y,&w,&h);
  126.  form_dial(0,x,y,w,h,x,y,w,h);
  127.  objc_draw( adr2,0,6,0,0,639,399);
  128.  button=form_do(adr2,PASS);
  129.  normal(adr2,button);
  130.  form_dial(3,x,y,w,h,x,y,w,h);
  131.  ti=( TEDINFO *)pw[PASS].ob_spec;
  132.  strcpy(pssw,( char *)ti->te_ptext);
  133. }
  134.  
  135. int makeboot( b )
  136. int b;
  137. {
  138.  if(b==0)
  139.  { 
  140.   inpass((OBJECT *)adr2);
  141.   for ( i=0 ; i<4 ; i++ )
  142.    prg[i+112]=pssw[i];
  143.  }
  144.  if(b==2)
  145.  {
  146.   inpass((OBJECT *)adr2);
  147.   for ( i=0 ; i<4 ; i++ )
  148.    prg[i+36]=pssw[i];
  149.  }
  150.  dummy=form_alert(1,"[2][ Bitte eine Diskette einlegen! ][ O.K. ]");
  151.  i=Floprd( boot ,0L,0,1,0,0,1);
  152.  cpy2(b);
  153.  boot[0]=0x60;  boot[1]=0x38;
  154.  Protobt( boot , 0L, -1, 1);
  155.  i=Flopwr( boot ,0L,0,1,0,0,1);
  156.  return(i);
  157. }
  158.  
  159. int gmxt()
  160. {
  161.  rsrc_free();
  162.  appl_exit();
  163.  v_clsvwk();
  164.  exit(0);
  165. }
  166.  
  167. void main()
  168. {
  169.  init();
  170.  for(;;)
  171.  {
  172.   cls();
  173.   rt=slct();
  174.   cpy1( rt );
  175.   if(makeboot( rt )<0)
  176.   {
  177.    dummy=form_alert(1,"[1][ Schreibfehler! ][ O.K. ]");
  178.   }
  179.  }
  180. }
  181.  
  182.  
  183.